Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Communication protocol for Metarhia stack with rpc, events, binary streams, memory and db access
Metacom protocol specification: https://github.com/metarhia/Contracts/blob/master/doc/Metacom.md
// Load at frontend
import { Metacom } from './metacom.js';
// Load at backend
const { Metacom } = require('metacom');
// Open connection (both platforms) and make calls
const metacom = Metacom.create('https://domainname.com:8000');
(async () => {
const { api } = metacom;
try {
await metacom.load('auth'); // Load `auth` interface
await api.auth.status(); // Check session status
} catch (err) {
await api.auth.signIn({ login: 'marcus', password: 'marcus' });
}
await metacom.load('example'); // Load `example` interface
const result = api.example.methodName({ arg1, arg2 });
})();
[1.8.2][] - 2021-08-06
Client
method startSession
and restoreSession
to remove access
to auth.provider
and work with database structure, move this to application
leyer where we know
auth specific DB structureFAQs
Communication protocol for Metarhia stack with rpc, events, binary streams, memory and db access
The npm package metacom receives a total of 61 weekly downloads. As such, metacom popularity was classified as not popular.
We found that metacom demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.